home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / vx6000 / pure voice / qpl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-12-04  |  19.8 KB  |  589 lines

  1. /*////////////////////////////////////////////////////////////////////////////
  2.  
  3. NAME:
  4.     Qualcomm PureVoice Library Header File
  5.  
  6. FILE:        Qpl.h
  7. AUTHOR:    Livingstone Song
  8. COMPANY:    QUALCOMM, Inc. Copyright (C) 1997 - 2000
  9.  
  10. DESCRIPTION:
  11.     This header file contains the necessary defines and COM classes.
  12.     
  13. NOTE:
  14.     Caller is responsible for all memory allocation and de-allocation.
  15.  
  16. VERSION: 2.0
  17.  
  18. REVISION:
  19. -11/15/00    Added QPLPvQcpFile1, QPLPvCodec3 - PureVoice Max Full Rate
  20. -08/18/00   Added QPLPvCodec2 - PureVoice Fixed Full Rate
  21. -07/20/00   Added QPLPvCodec1 - PureVoice Max Half Rate (variable rate)
  22. -02/05/99   Added QPLPvCodec - PureVoice Fixed Half Rate
  23. -10/20/97    Initial
  24.  
  25. /*////////////////////////////////////////////////////////////////////////////
  26. // TAB = 3
  27.  
  28. #ifndef _QPL_H_
  29. #define _QPL_H_
  30.  
  31. // INCLUDES
  32. #include "QplCom.h"
  33.  
  34. // DEFINES
  35. #define QPL_READ            0x00000001
  36. #define QPL_WRITE            0x00000002
  37.  
  38. #define QPL_ENCODE        0x00000001
  39. #define QPL_DECODE        0x00000002
  40.  
  41. #define QPL_QCELP_ENCODE_OFFSET(x)    ((x)<<16)
  42. #define QPL_QCELP_START            QPL_QCELP_ENCODE_OFFSET(0)
  43. #define QPL_QCELP_FULL_MAX        QPL_QCELP_START
  44. #define QPL_QCELP_FULL_FIXED    QPL_QCELP_FULL_MAX + QPL_QCELP_ENCODE_OFFSET(1)
  45. #define QPL_QCELP_HALF_MAX        QPL_QCELP_FULL_FIXED + QPL_QCELP_ENCODE_OFFSET(1)
  46. #define QPL_QCELP_HALF_FIXED    QPL_QCELP_HALF_MAX + QPL_QCELP_ENCODE_OFFSET(1)
  47. #define QPL_QCELP_END            QPL_QCELP_HALF_FIXED
  48.  
  49. // For use with IQPLPv*->GetInfo
  50. #ifdef __cplusplus
  51. extern "C" {
  52. #endif
  53. struct QPLPvHrCodecInfo 
  54. {
  55.     UINT16    bytesPerPacket; // size of a packet in bytes 
  56.     UINT16    samplesPerBlock;// size of a block in samples
  57.                                      // encoder encodes one block into one packet
  58.                                       // decoder decodes one packet into one block
  59.     UINT16    samplesPerSec;     // sps of input needed for the encoder
  60.                                      // and output from the decoder
  61.     UINT16    bitsPerSample;     // bits per sample of the above
  62. };
  63. #ifdef __cplusplus
  64. }
  65. #endif
  66.  
  67.  
  68. /*
  69. ***                                  
  70. *** ok, let's get down to business
  71. ***
  72. */                               
  73.  
  74.  
  75. // Our only entry point
  76. // For example, to create an instance of QPLPvQcpFile object, you would do 
  77. // the following:
  78. //
  79. // IQPLConvertFile* pCf;
  80. // QPLCreateInstance( CLSID_QPLPvQcpFile, IID_IQPLConvertFile, 
  81. //                            (void**)&pCf );
  82. //
  83.  
  84. // Returns S_OK if success.
  85. //
  86. HRESULT STDCALL QPLCreateInstance( 
  87.     REFCLSID rclsid,    // class object id
  88.     REFIID riid,        // interface id
  89.     void** ppvObj        // this will contain the requested interface
  90. );
  91.  
  92. /*///=========================================================================
  93. |*
  94. |*    QPLPvQcpFile
  95. |*
  96. |*    Interfaces:
  97. |*        IQPLConvertFile
  98. |*        IQPLQcpFile
  99. |*
  100. |*    CLSID_QPLPvQcpFile:
  101. |*
  102. |*        {94102930-4A5D-11d1-8896-00805F9E6091}
  103. /*///=========================================================================
  104. DEFINE_GUID(CLSID_QPLPvQcpFile, 
  105. 0x94102930, 0x4a5d, 0x11d1, 0x88, 0x96, 0x0, 0x80, 0x5f, 0x9e, 0x60, 0x91);
  106.  
  107. ////////////////////////////////////////////////////////////////////////////// 
  108. //
  109. //    IQPLConvertFile
  110. //
  111. //    Methods:
  112. //        - ConvertFile            convert qcp to wav and vice-versa
  113. //        - GetProgress            get progress of conversion
  114. //
  115. //  IQPLConvertFile:
  116. //
  117. //    {169F1DE0-4A59-11d1-8896-00805F9E6091}
  118. DEFINE_GUID(IID_IQPLConvertFile, 
  119. 0x169f1de0, 0x4a59, 0x11d1, 0x88, 0x96, 0x0, 0x80, 0x5f, 0x9e, 0x60, 0x91);
  120.  
  121. //
  122. // Example(no error checking is done):
  123. // This example converts a wave file (8-kHz 16-bit) to qcp file. 
  124. //
  125. // IQPLConvertFile* pCf;
  126. // QPLCreateInstance( CLSID_QPLPvQcpFile, IID_IQPLConvertFile, 
  127. //                            (void**)&pCf );
  128. // pCf->ConvertFile( NameOfWaveFile, NameForQcpFile, QPL_ENCODE );
  129. // pCf->Release(); // we're done, release it
  130.  
  131. class IQPLConvertFile : public IUnknown
  132. {
  133. public:
  134.     // ConvertFile converts inFileName to outFileName depending on the
  135.     // mode parameter. If mode = QPL_ENCODE then inFileName is assumed to be
  136.     // the file name of a wave file (8-kHz 16-bit PCM) and will be converted
  137.     // to a .qcp file. If mode = QPL_DECODE then inFileName is assumed to be
  138.     // the file name of a .qcp and will be converted to a wave file
  139.     // (8-kHz 16-bit PCM).
  140.     // Returns 0 if success otherwise -1.
  141.     virtual INT32 STDCALL ConvertFile(
  142.         const unsigned char* inFileName,
  143.         const unsigned char* outFileName, 
  144.         UINT32 mode) = 0;
  145.  
  146.     // GetProgress returns a number between 0 and 100 that corresponds
  147.     // to percent done in ConvertFile.
  148.     virtual UINT32 STDCALL GetProgress() = 0;
  149. };
  150.  
  151. ////////////////////////////////////////////////////////////////////////////// 
  152. //
  153. //    IQPLQcpFile
  154. //
  155. //    Methods:
  156. //        - Open                open file
  157. //        - Close                close file
  158. //        - Read                read and decode
  159. //        - Write                encode and write
  160. //        - GetLength            get file length in milliseconds
  161. //        - GetBlockSize        get size of a block in milliseconds
  162. //
  163. //  IQPLQcpFile:
  164. //
  165. // {2E77C1B0-6DF3-11d1-889E-00805F9E6091}
  166. DEFINE_GUID(IID_IQPLQcpFile, 
  167. 0x2e77c1b0, 0x6df3, 0x11d1, 0x88, 0x9e, 0x0, 0x80, 0x5f, 0x9e, 0x60, 0x91);
  168.  
  169. //
  170. // Example(no error checking is done):
  171. //
  172. // UINT32 lenInSec;
  173. // IQPLQcpFile* pIQcpFile;
  174. // QPLCreateInstance( CLSID_QPLPvFileConvert, IID_IQPLQcpFile, 
  175. //                            (void**)&pIQcpFile );
  176. // pIQcpFile->Open( someFileName, QPL_READ );
  177. // // find length of sound in seconds
  178. // lenInSec = pIQcpFile->GetLength() * pIQcpFile->GetBlockSize() / 1000; 
  179. // pIQcpFile->Close();    // we're done, close file
  180. // pIQcpFile->Release(); // we're done, release it from memory
  181.  
  182. class IQPLQcpFile : public IUnknown
  183. {
  184. public:
  185.     // Open opens .qcp file "fileName" in either QPL_READ or QPL_WRITE mode
  186.     // but not both QPL_READ and QPL_WRITE.
  187.     // Returns TRUE if success, else return FALSE.
  188.     virtual BOOL STDCALL Open( const unsigned char* fileName, UINT32 mode ) = 0;
  189.     
  190.     // Close closes file that was opened with Open.
  191.     // Returns TRUE if success, else return FALSE.
  192.     virtual BOOL STDCALL Close() = 0;
  193.  
  194.     // Read reads 'blocks' blocks of PureVoice data and decodes
  195.     // it to pcmBuf as linear 8-kHz 16-bit PCM samples.
  196.     // Returns the current file position in blocks.
  197.     // If return == 0 then end of file. 
  198.     // If return < 0 then error in read.
  199.     // Note: Caller must allocate and de-allocate pPcmBuf.
  200.     // PCM samples are assumed to be in little-endian format.
  201.     virtual INT32 STDCALL Read( UINT32 blocks, BYTE* pPcmBuf ) = 0;
  202.     
  203.     // Write encodes 'blocks' blocks of PCM data (linear 8-kHz 16-bit) 
  204.     // in pPcmBuf to PureVoice format and writes it to the file.
  205.     // Returns the current file position in blocks.
  206.     // If return < 0 then error in write.
  207.     // PCM samples are assumed to be in little-endian format.
  208.     virtual INT32 STDCALL Write( UINT32 blocks, const BYTE* pPcmBuf ) = 0;
  209.  
  210.     // Returns length of file (sound data) in blocks.
  211.     virtual UINT32 STDCALL GetLength() = 0;
  212.  
  213.     // Returns a block size in milliseconds.
  214.     virtual UINT32 STDCALL GetBlockSize() = 0;
  215. };
  216.  
  217.  
  218.  
  219. // QPLPvQcpFile1 is exactly same as QPLPvQcpFile except that one can specify
  220. // the encoding level to the following:
  221. // - QPL_QCELP_FULL_MAX    full max rate (variable rate 14000 bps max) 
  222. // - QPL_QCELP_FULL_FIXED  full fixed rate (14000 bps)
  223. // - QPL_QCELP_HALF_MAX    half max rate (variable rate 6800 bps max)
  224. // - QPL_QCELP_HALF_FULL   half fixed rate (6800 bps)
  225. // QPL_QCELP_FULL_MAX is default.
  226.  
  227. /*///=========================================================================
  228. |*
  229. |*    QPLPvQcpFile1
  230. |*
  231. |*    Interfaces:
  232. |*        IQPLConvertFile1
  233. |*        IQPLQcpFile1
  234. |*
  235. |*    CLSID_QPLPvQcpFile1:
  236. |*
  237. |*        {EEDAC6E0-BA67-11d4-94A2-0008C7377505}
  238. /*///=========================================================================
  239. DEFINE_GUID(CLSID_QPLPvQcpFile1,
  240. 0xeedac6e0, 0xba67, 0x11d4, 0x94, 0xa2, 0x0, 0x8, 0xc7, 0x37, 0x75, 0x5);
  241.  
  242. ////////////////////////////////////////////////////////////////////////////// 
  243. //
  244. //    IQPLConvertFile1
  245. //
  246. //    Methods:
  247. //        - ConvertFile            convert qcp to wav and vice-versa
  248. //        - GetProgress            get progress of conversion
  249. //
  250. //  IQPLConvertFile1:
  251. //
  252. //    {EEDAC6E1-BA67-11d4-94A2-0008C7377505}
  253. DEFINE_GUID(IID_IQPLConvertFile1, 
  254. 0xeedac6e1, 0xba67, 0x11d4, 0x94, 0xa2, 0x0, 0x8, 0xc7, 0x37, 0x75, 0x5);
  255.  
  256. class IQPLConvertFile1 : public IUnknown
  257. {
  258. public:
  259.     // ConvertFile converts inFileName to outFileName depending on the
  260.     // mode parameter. If mode = QPL_ENCODE then inFileName is assumed to be
  261.     // the file name of a wave file (8-kHz 16-bit PCM) and will be converted
  262.     // to a .qcp file. If mode = QPL_DECODE then inFileName is assumed to be
  263.     // the file name of a .qcp and will be converted to a wave file
  264.     // (8-kHz 16-bit PCM).
  265.     // The mode parameter can also take on additional value in the QPL_ENCODE
  266.     // mode. This additional value specifies the encoding level.
  267.     // These are:
  268.    // - QPL_QCELP_FULL_MAX    full max rate (variable rate 14000 bps max) 
  269.    // - QPL_QCELP_FULL_FIXED  full fixed rate (14000 bps)
  270.    // - QPL_QCELP_HALF_MAX    half max rate (variable rate 6800 bps max)
  271.     // - QPL_QCELP_HALF_FULL   half fixed rate (6800 bps)
  272.     // QPL_QCELP_FULL_MAX is default.
  273.     // Returns 0 if success otherwise -1.
  274.  
  275.     //
  276.     // Example(no error checking is done):
  277.     // This example converts a wave file (8-kHz 16-bit) to qcp file using 
  278.     // half max rate encoding. 
  279.     //
  280.     // IQPLConvertFile1* pCf;
  281.     // QPLCreateInstance( CLSID_QPLPvQcpFile1, IID_IQPLConvertFile1, 
  282.     //                            (void**)&pCf );
  283.     // pCf->ConvertFile( NameOfWaveFile, NameForQcpFile, 
  284.     //                            QPL_ENCODE | QPL_QCELP_HALF_MAX);
  285.     // pCf->Release(); // we're done, release it
  286.  
  287.     virtual INT32 STDCALL ConvertFile(
  288.         const unsigned char* inFileName,
  289.         const unsigned char* outFileName, 
  290.         UINT32 mode) = 0;
  291.  
  292.     // GetProgress returns a number between 0 and 100 that corresponds
  293.     // to percent done in ConvertFile.
  294.     virtual UINT32 STDCALL GetProgress() = 0;
  295. };
  296.  
  297. ////////////////////////////////////////////////////////////////////////////// 
  298. //
  299. //    IQPLQcpFile1
  300. //
  301. //    Methods:
  302. //        - Open                open file
  303. //        - Close                close file
  304. //        - Read                read and decode
  305. //        - Write                encode and write
  306. //        - GetLength            get file length in milliseconds
  307. //        - GetBlockSize        get size of a block in milliseconds
  308. //
  309. //  IQPLQcpFile1:
  310. //
  311. //    {EEDAC6E2-BA67-11d4-94A2-0008C7377505}
  312. DEFINE_GUID(IID_IQPLQcpFile1, 
  313. 0xeedac6e2, 0xba67, 0x11d4, 0x94, 0xa2, 0x0, 0x8, 0xc7, 0x37, 0x75, 0x5);
  314.  
  315. class IQPLQcpFile1 : public IUnknown
  316. {
  317. public:
  318.     // Open opens .qcp file "fileName" in either QPL_READ or QPL_WRITE mode
  319.     // but not both QPL_READ and QPL_WRITE.
  320.     // The mode parameter can also take on additional value in QPL_WRITE mode
  321.     // This additional value specifies the encoding level.
  322.     // These are:
  323.    // - QPL_QCELP_FULL_MAX    full max rate (variable rate 14000 bps max) 
  324.    // - QPL_QCELP_FULL_FIXED  full fixed rate (14000 bps)
  325.    // - QPL_QCELP_HALF_MAX    half max rate (variable rate 6800 bps max)
  326.     // - QPL_QCELP_HALF_FULL   half fixed rate (6800 bps)
  327.     // QPL_QCELP_FULL_MAX is default.
  328.     // Returns TRUE if success, else return FALSE.
  329.  
  330.     //
  331.     // Example(no error checking is done):
  332.     // This example opens a new qcp file with encoding level of full fixed
  333.     // rate.
  334.     //
  335.     // IQPLQcpFile1* pIQcpFile;
  336.     // QPLCreateInstance( CLSID_QPLPvFileConvert1, IID_IQPLQcpFile1, 
  337.     //                            (void**)&pIQcpFile );
  338.     // pIQcpFile->Open( newFileName, QPL_WRITE | QPL_QCELP_FULL_FIXED );
  339.     
  340.     virtual BOOL STDCALL Open( const unsigned char* fileName, UINT32 mode ) = 0;
  341.     
  342.     // Close closes file that was opened with Open.
  343.     // Returns TRUE if success, else return FALSE.
  344.     virtual BOOL STDCALL Close() = 0;
  345.  
  346.     // Read reads 'blocks' blocks of PureVoice data and decodes
  347.     // it to pcmBuf as linear 8-kHz 16-bit PCM samples.
  348.     // Returns the current file position in blocks.
  349.     // If return == 0 then end of file. 
  350.     // If return < 0 then error in read.
  351.     // Note: Caller must allocate and de-allocate pPcmBuf.
  352.     // PCM samples are assumed to be in little-endian format.
  353.     virtual INT32 STDCALL Read( UINT32 blocks, BYTE* pPcmBuf ) = 0;
  354.     
  355.     // Write encodes 'blocks' blocks of PCM data (linear 8-kHz 16-bit) 
  356.     // in pPcmBuf to PureVoice format and writes it to the file.
  357.     // Returns the current file position in blocks.
  358.     // If return < 0 then error in write.
  359.     // PCM samples are assumed to be in little-endian format.
  360.     virtual INT32 STDCALL Write( UINT32 blocks, const BYTE* pPcmBuf ) = 0;
  361.  
  362.     // Returns length of file (sound data) in blocks.
  363.     virtual UINT32 STDCALL GetLength() = 0;
  364.  
  365.     // Returns a block size in milliseconds.
  366.     virtual UINT32 STDCALL GetBlockSize() = 0;
  367. };
  368.  
  369.  
  370.  
  371. /*///=========================================================================
  372. |*
  373. |*    QPLPvCodec
  374. |*
  375. |*    Interfaces:
  376. |*        IQPLPvHrCodec
  377. |*
  378. |*    CLSID_QPLPvCodec:
  379. |*
  380. |*        {ED117979-5981-11d3-A1B4-00805F9B5695}
  381. /*///=========================================================================
  382. DEFINE_GUID(CLSID_QPLPvCodec, 
  383. 0xed117979, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  384.  
  385. ////////////////////////////////////////////////////////////////////////////// 
  386. //
  387. //    IQPLPvHrCodec
  388. //    PureVoice Fixed Half Rate Codec (6800 bps)
  389. //
  390. //    Methods:
  391. //        - Reset                initialize CODEC
  392. //        - GetInfo            get info on CODEC
  393. //        - Convert            encode or decode depending on mode set in Reset
  394. //
  395. //  IQPLPvHrCodec:
  396. //
  397. // {ED11797A-5981-11d3-A1B4-00805F9B5695}
  398. DEFINE_GUID(IID_IQPLPvHrCodec, 
  399. 0xed11797a, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  400.  
  401. class IQPLPvHrCodec : public IUnknown
  402. {
  403. public:
  404.     // Reset initializes the codec (must be performed before Encode/Decode).
  405.     // Parameter mode must be either QPL_ENCODE or QPL_DECODE.
  406.     // Returns TRUE if success else FALSE.
  407.     virtual BOOL STDCALL Reset( UINT32 mode )=0;
  408.     
  409.     // Fills in *pInfo.
  410.     virtual void STDCALL GetInfo( QPLPvHrCodecInfo* pInfo )=0;
  411.  
  412.     // In ENCODE mode, Convert converts 'blocks' blocks of linear PCM samples
  413.     // in *pSrcBuf to PureVoice Fixed Half Rate data into *pDestBuf.
  414.     // In DECODE mode, Convert converts 'blocks' packets of PureVoice Fixed Half
  415.     // Rate in *pSrcBuf to linear PCM samples data into *pDestBuf.
  416.     // Return TRUE if success else FALSE.
  417.     // Note: Caller must allocate and de-allocate pDestBuf.
  418.     // PCM samples are assumed to be in little-endian format.
  419.     virtual BOOL STDCALL Convert( UINT32 blocks, const BYTE* pSrcBuf, BYTE* pDestBuf )=0;
  420. };
  421.  
  422.  
  423.  
  424. /*///=========================================================================
  425. |*
  426. |*    QPLPvCodec1
  427. |*
  428. |*    Interfaces:
  429. |*        IQPLPvVrHrCodec
  430. |*
  431. |*    CLSID_QPLPvCodec1:
  432. |*
  433. |*        {ED11797B-5981-11d3-A1B4-00805F9B5695}
  434. /*///=========================================================================
  435. DEFINE_GUID(CLSID_QPLPvCodec1, 
  436. 0xed11797b, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  437.  
  438. ////////////////////////////////////////////////////////////////////////////// 
  439. //
  440. //    IQPLPvVrHrCodec
  441. //    PureVoice Variable Half Rate Codec (Max 6800 bps)
  442. //
  443. //    Methods:
  444. //        - Reset                initialize CODEC
  445. //        - GetInfo            get info on CODEC
  446. //        - Convert            encode or decode depending on mode set in Reset
  447. //
  448. //  IQPLPvVrHrCodec:
  449. //
  450. // {ED11797C-5981-11d3-A1B4-00805F9B5695}
  451. DEFINE_GUID(IID_IQPLPvVrHrCodec, 
  452. 0xed11797c, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  453.  
  454. class IQPLPvVrHrCodec : public IUnknown
  455. {
  456. public:
  457.     // Reset initializes the codec (must be performed before Encode/Decode).
  458.     // Parameter mode must be either ENCODE or DECODE.
  459.     // Returns TRUE if success else FALSE.
  460.     virtual BOOL STDCALL Reset( UINT32 mode )=0;
  461.     
  462.     // Fills in *pInfo.
  463.     virtual void STDCALL GetInfo( QPLPvHrCodecInfo* pInfo )=0;
  464.  
  465.     // In ENCODE mode, Convert converts 'blocks' blocks of linear PCM samples
  466.     // in *pSrcBuf to PureVoice Max Half Rate (variable) data into *pDestBuf.
  467.     // The return value contains the actual size of *pDestBuf in bytes.
  468.     // In DECODE mode, Convert converts 'blocks' packets of PureVoice Max Half
  469.     // Rate (variable) in *pSrcBuf to linear PCM samples data into *pDestBuf.
  470.     // The return value contains the actual size of *pDestBuf in bytes. 
  471.     // In DECODE case, this return value will equal to 
  472.     // ['blocks' * samplesPerBlock * bitsPerSample / 8]
  473.     // If return value is -1 then error occurred.
  474.     // Note: Caller must allocate and de-allocate pDestBuf.
  475.     // PCM samples are assumed to be in little-endian format.
  476.     virtual UINT32 STDCALL Convert( UINT32 blocks, const BYTE* pSrcBuf, BYTE* pDestBuf )=0;
  477. };
  478.  
  479.  
  480.  
  481. /*///=========================================================================
  482. |*
  483. |*    QPLPvCodec2
  484. |*
  485. |*    Interfaces:
  486. |*        IQPLPvFrCodec
  487. |*
  488. |*    CLSID_QPLPvCodec2:
  489. |*
  490. |*        {ED11797D-5981-11d3-A1B4-00805F9B5695}
  491. /*///=========================================================================
  492. DEFINE_GUID(CLSID_QPLPvCodec2, 
  493. 0xed11797d, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  494.  
  495. ////////////////////////////////////////////////////////////////////////////// 
  496. //
  497. //    IQPLPvFrCodec
  498. //    PureVoice Fixed Full Rate Codec (14000 bps)
  499. //
  500. //    Methods:
  501. //        - Reset                initialize CODEC
  502. //        - GetInfo            get info on CODEC
  503. //        - Convert            encode or decode depending on mode set in Reset
  504. //
  505. //  IQPLPvFrCodec:
  506. //
  507. // {ED11797e-5981-11d3-A1B4-00805F9B5695}
  508. DEFINE_GUID(IID_IQPLPvFrCodec, 
  509. 0xed11797e, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  510.  
  511. class IQPLPvFrCodec : public IUnknown
  512. {
  513. public:
  514.     // Reset initializes the codec (must be performed before Encode/Decode).
  515.     // Parameter mode must be either ENCODE or DECODE.
  516.     // Returns TRUE if success else FALSE.
  517.     virtual BOOL STDCALL Reset( UINT32 mode )=0;
  518.     
  519.     // Fills in *pInfo.
  520.     virtual void STDCALL GetInfo( QPLPvHrCodecInfo* pInfo )=0;
  521.  
  522.     // In ENCODE mode, Convert converts 'blocks' blocks of linear PCM samples
  523.     // in *pSrcBuf to PureVoice Fixed Full Rate data into *pDestBuf.
  524.     // In DECODE mode, Convert converts 'blocks' packets of PureVoice Fixed Full
  525.     // Rate in *pSrcBuf to linear PCM samples data into *pDestBuf.
  526.     // Return TRUE if success else FALSE.
  527.     // Note: Caller must allocate and de-allocate pDestBuf.
  528.     // PCM samples are assumed to be in little-endian format.
  529.     virtual BOOL STDCALL Convert( UINT32 blocks, const BYTE* pSrcBuf, BYTE* pDestBuf )=0;
  530. };
  531.  
  532.  
  533.  
  534. /*///=========================================================================
  535. |*
  536. |*    QPLPvCodec3
  537. |*
  538. |*    Interfaces:
  539. |*        IQPLPvVrFrCodec
  540. |*
  541. |*    CLSID_QPLPvCodec3:
  542. |*
  543. |*        {ED11797F-5981-11d3-A1B4-00805F9B5695}
  544. /*///=========================================================================
  545. DEFINE_GUID(CLSID_QPLPvCodec3, 
  546. 0xed11797f, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  547.  
  548. ////////////////////////////////////////////////////////////////////////////// 
  549. //
  550. //    IQPLPvVrFrCodec
  551. //    PureVoice Variable Full Rate Codec (max 14000 bps)
  552. //
  553. //    Methods:
  554. //        - Reset                initialize CODEC
  555. //        - GetInfo            get info on CODEC
  556. //        - Convert            encode or decode depending on mode set in Reset
  557. //
  558. //  IQPLPvVrFrCodec:
  559. //
  560. // {ED117980-5981-11d3-A1B4-00805F9B5695}
  561. DEFINE_GUID(IID_IQPLPvVrFrCodec, 
  562. 0xed117980, 0x5981, 0x11d3, 0xa1, 0xb4, 0x0, 0x80, 0x5f, 0x9b, 0x56, 0x95);
  563.  
  564. class IQPLPvVrFrCodec : public IUnknown
  565. {
  566. public:
  567.     // Reset initializes the codec (must be performed before Encode/Decode).
  568.     // Parameter mode must be either ENCODE or DECODE.
  569.     // Returns TRUE if success else FALSE.
  570.     virtual BOOL STDCALL Reset( UINT32 mode )=0;
  571.     
  572.     // Fills in *pInfo.
  573.     virtual void STDCALL GetInfo( QPLPvHrCodecInfo* pInfo )=0;
  574.  
  575.     // In ENCODE mode, Convert converts 'blocks' blocks of linear PCM samples
  576.     // in *pSrcBuf to PureVoice Max Full Rate (variable) data into *pDestBuf.
  577.     // The return value contains the actual size of *pDestBuf in bytes.
  578.     // In DECODE mode, Convert converts 'blocks' packets of PureVoice Max Full
  579.     // Rate (variable) in *pSrcBuf to linear PCM samples data into *pDestBuf.
  580.     // The return value contains the actual size of *pDestBuf in bytes. 
  581.     // In DECODE case, this return value will equal to 
  582.     // ['blocks' * samplesPerBlock * bitsPerSample / 8]
  583.     // If return value is -1 then error occurred.
  584.     // Note: Caller must allocate and de-allocate pDestBuf.
  585.     // PCM samples are assumed to be in little-endian format.
  586.     virtual UINT32 STDCALL Convert( UINT32 blocks, const BYTE* pSrcBuf, BYTE* pDestBuf )=0;
  587. };
  588.  
  589. #endif